projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
94736c4
)
* lisp/emacs-lisp/comp.el (comp-body-eff): Improve style.
author
Andrea Corallo
<akrl@sdf.org>
Wed, 23 Sep 2020 19:50:20 +0000
(21:50 +0200)
committer
Andrea Corallo
<akrl@sdf.org>
Thu, 24 Sep 2020 07:57:17 +0000
(09:57 +0200)
lisp/emacs-lisp/comp.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/comp.el
b/lisp/emacs-lisp/comp.el
index 8b8b111640a9dc2cc18615a57c5aaf116b45ab20..07b0ccee3cb62a95cece68feb10827f37d7588c4 100644
(file)
--- a/
lisp/emacs-lisp/comp.el
+++ b/
lisp/emacs-lisp/comp.el
@@
-1127,13
+1127,9
@@
When BODY is auto guess function name form the LAP byte-code
name. Otherwise expect lname fnname."
(pcase (car body)
('auto
- (list `(comp-emit-set-call-subr
- ',(comp-op-to-fun op-name)
- ,sp-delta)))
+ `((comp-emit-set-call-subr ',(comp-op-to-fun op-name) ,sp-delta)))
((pred symbolp)
- (list `(comp-emit-set-call-subr
- ',(car body)
- ,sp-delta)))
+ `((comp-emit-set-call-subr ',(car body) ,sp-delta)))
(_ body))))
(defmacro comp-op-case (&rest cases)